cody - HTMLify profile

cody
4270 Files
636140 Views
Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/198 - Balloon Game
# Balloon Game
## Tech Used
HTML ,CSS, JavaScript
## About Project
- Hover the Mouse Over The Balloon And Burst it.
- Burst More Score More
## Tech Used
HTML ,CSS, JavaScript
## About Project
- Hover the Mouse Over The Balloon And Burst it.
- Burst More Score More
body{
background-color: brown;
}
h1{
text-align: center;
color: azure;
}
background-color: brown;
}
h1{
text-align: center;
color: azure;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Balloon Game</title>
<link rel="stylesheet" href="style.css">
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Balloon Game</title>
<link rel="stylesheet" href="style.css">
const container = document.querySelector('.game');
const scoreBoard = maker(container,'div','scoreBoard','SCORE');
const gameBoard = maker(container,'div','gameBoard','GAMEBOARD');
const message = maker(container,'div','message','MESSAGE');
const items = ["ℽ","☂","☃","☀","☄","★","☏","☢"];
const game = {score:0,ani:{},total:0,counter:0,ready:0,bad:0};
const btn = maker(container,'button','btn','Click to Start');
btn.addEventListener('click',startGame);
const scoreBoard = maker(container,'div','scoreBoard','SCORE');
const gameBoard = maker(container,'div','gameBoard','GAMEBOARD');
const message = maker(container,'div','message','MESSAGE');
const items = ["ℽ","☂","☃","☀","☄","★","☏","☢"];
const game = {score:0,ani:{},total:0,counter:0,ready:0,bad:0};
const btn = maker(container,'button','btn','Click to Start');
btn.addEventListener('click',startGame);